home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / util / shell / csh542.lha / HISTORY < prev    next >
Encoding:
Text File  |  1995-04-10  |  14.7 KB  |  338 lines

  1.  
  2.  
  3.                                   HISTORY
  4.                                  =========
  5.  
  6.  
  7. Changes from 5.41 to 5.42   (public release)
  8. -------------------------
  9.  - Minor changes in documentation.
  10.  - Built-in command "window" doesn't clear screen anymore.
  11.     If you want to clear screen, use "echo -n ^[c^O" or "echo -n ^L".
  12.  - Fixed timer bug in _prompt (%e) if start and end time of a program
  13.     were not at the same day. (wrong execution time was displayed)
  14.  - New built-in variable "_promptdep" (prompt path depth) and new place-
  15.     holder "%P" for built-in variable "_prompt". Like "%p", "%P" displays
  16.     the current path. With "_promptdep" the user sets the maximum number
  17.     of directories (path parts) displayed for %P (to keep prompt smart
  18.     and short). Default is 3.
  19.  - New built-in variable "_complete" (DOS pattern). What files should
  20.     match on filename completion. Default is "*". For example, if you
  21.     don't want to see files ending with ".bak", set it to "~(*.bak)".
  22.  
  23.  
  24.  
  25. Changes from 5.40 to 5.41   (internal beta release)
  26. -------------------------
  27.  - Changed output format of built-in command "mem" (for option -r)
  28.     a little bit.
  29.  - Fixed various bugs in built-in command "window". The changes for 5.40
  30.     caused an unnecessary usage message when using options -f, -b and -a.
  31.     And options -l and -s didn't work at all. The checking for maximum
  32.     window dimensions are not hardcoded any more but dynamically adjusted
  33.     to the screen dimensions.
  34.  - Finally found (and fixed) rounding bug in "itok()", caused display of
  35.     wrong size for memory or harddisk disk around 1 GB and 1 TB etc.
  36.     Numbers were rounded down to "0 GB" and "0 TB" instead of rounded
  37.     up to "1 GB" and "1 TB".
  38.     [thanks to Andreas 'Leguan' Geist]
  39.  - Changed shortcut for "Kilobytes" from "KB" (or "K") to "kB" (or "k").
  40.     You may like it or not - but only this way it's consistent. They say
  41.     one should use "K" instead of "k" because it has something to do with
  42.     1024 and not 1000.  But then, why don't we use "m" instead of "M" and
  43.     "g" instead of "G"?
  44.  
  45.  
  46.  
  47. Changes from 5.39 to 5.40   (public release)
  48. -------------------------
  49.  - Fixed error message for built-in command "copy": if no special error
  50.     message was available, always the string "(no mem)" was output.
  51.  - New placeholders "-1" and "-2" for built-in command "window".
  52.  - Increased maximum value for window dimensions from 1023 to 32767
  53.     for built-in command "window".
  54.  - Environment variables LINES and COLUMNS override window bounds
  55.     from Amiga console.device.
  56.     (if env vars are set, no CSI sequence is sent)
  57.  - Built-in command "mem" now shows size of largest available memory block.
  58.  
  59.  
  60.  
  61. Changes from 5.38 to 5.39   (public release)
  62. -------------------------
  63.  - New built-in variable "_timeout" (in microseconds) sets maximum response
  64.     time for terminal to answer WINDOW STATUS REQUEST (for window bounds).
  65.     Defaults to 1 (for local usage), must be set to higher value for remote
  66.     connections.  Only used, if window pointer is not available.
  67.  - Removed command line length limitation (140 chars) for ARexx scripts that
  68.     ends with ".rexx" but are started without the trailing ".rexx".
  69.  - Removed command line length limitation (518 chars) for ARexx scripts and
  70.     external shells (#! in first line), this was a limitation in AmigaOS'
  71.     System() function.  DOS scripts still have this limitation, because you
  72.     cannot RunCommand() "execute".
  73.  - Not only "*" and "?" but also "[" and "]" recognized as AmigaDOS pattern.
  74.     (that means, to use "[" and "]" you must quote (") or escape (\) them!)
  75.  - ... and much more workarounds for serious bugs in DateToStr() and Locale
  76.  - Fixed bug: making an assign to an executable and calling the executable
  77.     by its assign crashed machine.
  78.  - Fixed bug: built-in command "cp" sometimes used already freed memory for
  79.     generating error messages (resulted in some strange error messages)
  80.  - New flag for for command abbreviation ($_abbrev):
  81.     8, search DOS path-list if command wasn't found in Cshell's internal
  82.     program hash list (see "rehash" command)
  83.  
  84.  
  85.  
  86. Changes from 5.37 to 5.38   (internal beta release)
  87. -------------------------
  88.  - CTRL-D now shows matching files if current word is not a directory.
  89.     (if directory then shows contents of directory -- as usual)
  90.     In its current implementation this may have unexpected side effects
  91.     if current word is already a pattern.
  92.  - Class definition for AmigaE in class.sh
  93.     [thanks to Joseph E. Van_Riper III]
  94.  - Now internal timer (eg, %e in the titlebar) not set to zero when a null
  95.     command is encountered.  (same for return code, %x in titlebar)
  96.  - The idea of always using the variable "_dirformat" for "dir" wasn't a
  97.     good idea.  So, "_dirformat" is only used if option -z is given (when
  98.     "_dirformat" is unset then use first argument as format string).
  99.  - New control-code for line-editing: "^V" (ctrl-v) quotes next char.
  100.  - New built-in variable "_kick" holds version number of Operating System.
  101.  - Built-in command "assign" now prints volume name if assign points to
  102.     an unmounted volume (eg, a removed floppy disk) and doesn't pop up
  103.     a requester "Please replace volume ..."
  104.  - It was a stupid idea to force redirecting of all Cshell-related
  105.     system requesters to CSH's screen, because requester windows inherit
  106.     the window title of their "initiator". They appear now again on your
  107.     default public screen.
  108.  - Fixed serious bug (crashed machine) with redirection and launching
  109.     programs into background. (files closed twice)
  110.     Known bug: it's still not possible to run pipes into background...
  111.  - When running programs into background (run, rback, &), internal commands
  112.     and aliases are recognized and executed with "csh -c". Aliases WON'T be
  113.     resolved on this level so they must be declared in .cshrc to run them
  114.     into background.
  115.  - Execution of Rexx-Scripts (without trailing ".rexx") and any other program
  116.     with "#! my_prog" or ";! my_prog" in first line of script now possible
  117.     also from DOS search path and not only $_path.
  118.  - New built-in variable "_mappath" (see manual), enables pathname-mapping
  119.     for commands if script starts with "#!" or ";!" in first line. Converts
  120.     Unix pathes like "/usr/..." to "usr:...".
  121.  - New option "-w" for Cshell, don't use window pointer (useful for KingCON).
  122.  - New option "-V" for Cshell, send only VT100 compatible control sequences
  123.  - Internal variable "o_vt100" now used (if option -t or -V is set),
  124.     don't send control sequences that are not VT100 compatible (eg,
  125.     special Amiga control sequences).
  126.  
  127.  
  128.  
  129. Changes from 5.36 to 5.37   (public release)
  130. -------------------------
  131.  - Built-in command "mkdir" now strips off trailing slash (if any).
  132.  - Built-in command "chmod" now supports "a" for all bits (ugo),
  133.     and if no ownership-bit is specified "chmod" really modifies
  134.     only the user-bits (as stated in the doc) and not all bits.
  135.  - Built-in commands "chown/chgrp" now also run under AmigaOS 2.0+
  136.     (direct DOS packets), not only under AmigaOS 3.0+ (SetOwner).
  137.     [thanks to Carsten Heyl]
  138.  - No requester "please insert volume ..." when you press return
  139.     and your current directory is on an "unmounted" volume
  140.     (eg, a removed floppy disk).
  141.  - Built-in command "dir" now uses contents of variable "_dirformat"
  142.     (if set) automatically as default output format (option -z not
  143.     neccessary for _dirformat anymore). Option -z (followed by an
  144.     argument with format string) can now be used again for another
  145.     custom format for current call as in Cshell 5.19 and before.
  146.     [thanks to Laurent Faillie for his letter]
  147.  - Built-in command "protect" was broken in beta-version 5.36.
  148.  - Source code now "indent" clean.
  149.     (some warnings on first run, but no errors)
  150.  - New option "-c" for built-in command "qsort": be case-sensitive.
  151.  
  152.  
  153.  
  154. Changes from 5.35 to 5.36   (internal beta release)
  155. -------------------------
  156.  - Now output in "path -r" only if at least 1 memory block could not be
  157.     freed.
  158.  - Fixed layout bug in "rm -r <wildcard>" if one or more items could not
  159.     be removed.
  160.  - Fixed serious bug in "rehash", access to already freed memory under
  161.     certain circumstances.  (always think twice before using "char ***" ;-)
  162.  - Manual entry for built-in command "relabel".
  163.  - Error checking code for all NameFromLock() calls.
  164.  - Now 100% Commodore-compatible version string.
  165.  - Now @rnd( ) accepts optional seed parameter.
  166.  - Fixed bogus output for NULL pointers in pattern-matching-routine.
  167.  - Fixed bug in "rehash", recognition of executables was broken.
  168.  - Now multiple drive names are allowed for "diskchange".
  169.  - Now @age() returns null-string if file was not found (instead of 99999).
  170.     [thanks to Gary Duncan]
  171.  - New function @age_mins() returns age of file in minutes.
  172.     [thanks to Gary Duncan]
  173.  - Now requesters appear on same screen as CSH's window.
  174.  - Variable "_abbrev" now handled somewhat different: it enables/disables
  175.     the different modes of command-abbreviation.  See manual for details!
  176.  - Output of "dir -k" and "dir -i" (show classes) looks much nicer now.
  177.  - Added class "gzip" to csh:class.sh.
  178.  - Added support for MultiUser. %U in prompt/titlebar shows current user
  179.     of CSH. Out-comment "#define MULTIUSER_SUPPORT 1" in shell.h to compile
  180.     without MultiUser stuff.
  181.     [thanks to Magnus Lilja]
  182.  - New built-in commands "chown" and "chgrp".
  183.  - Built-in command "chmod" now supports User/Group/Other bits.
  184.  - New placeholders for custom output format (option "-z"),
  185.     "%F" shows group/other bits, %U shows user-id, %G shows group-id.
  186.  
  187.  
  188.  
  189. Changes from 5.34 to 5.35   (public release)
  190. -------------------------
  191.  - Now CSH executes "s:.logout" on exit.
  192.     New option "-L" (noLogout) disables sourcing of "s:.logout".
  193.  - Fixed option "-n" in built-in command "dir", never worked before.
  194.  - Some minor layout changes in built-in command "help".
  195.  - Built-in command "window -q" (query) shows public screen names.
  196.  - New/Changed options for built-in command "strings".
  197.     (not compatible with previous versions!)
  198.  - More sophisticated memory-cleanup for built-in command "path -r" (reset).
  199.  - New option "-M" for CSH, don't clear menus (especially for KingCON).
  200.  - Support for soft-links in built-in command "dir".
  201.     [thanks to Carsten Heyl]
  202.  
  203.  
  204.  
  205. Changes from 5.33 to 5.34   (internal beta release)
  206. -------------------------
  207.  
  208.  - New section SCROLLING in the manual (at the end). Read it !
  209.  - New variable "_prghash" holds filename where program hash list
  210.     is loaded from and saved to.
  211.  - Now CSH also finds programs in resident list if they start with "C:"
  212.     (even if there is no corresponding program in C: directory).
  213.     This is for compatibility reasons (Commodore Shell).
  214.  - In previous versions CSH aborted the commandline if one pattern
  215.     did not match. Now CSH only aborts if all patterns does not
  216.     match.
  217.  - Totally new meaning of variable "_nomatch".  It's now unset by
  218.     default and if you set it then CSH will _not_ abort if all
  219.     patterns does not match.
  220.  - Added option "-m" to CSH, sets "_nomatch" variable.
  221.     (for compatibility reasons)
  222.  - Fixed bug in date command (s/r options).
  223.     [Gary Duncan]
  224.  - New option -a for "copy" command, don't clear archive bit.
  225.     [Gary Duncan]
  226.  - Rewritten code for "window -q", no longer crashes system.
  227.  - New option "-w" for built-in command "window".
  228.     (ignore window width for option -q, so that very long window/screen
  229.      titles are printed completely)
  230.  - Input/output redirection with "<>", the file must be either
  231.     "NIL:" or an interactive file.
  232.  - New variable "_cquote" enables Commodore-style handling of
  233.     quotation marks (eg, for use with ReadArgs);
  234.     variable is unset by default (UNIX-style handling of quotes).
  235.  - Increased some (very small) buffers in "ls" code (could crash
  236.     machine), line limit is now around 1000 chars per line. Had
  237.     to increase internal stack size to 17500.
  238.  
  239.  
  240.  
  241. Changes from 5.32 to 5.33   (internal beta release)
  242. -------------------------
  243.  
  244.  - New built-in command "rehash", buffers programs in DOS search path
  245.     and offers program name completion (ESC-p, ESC-P). Two new "completion
  246.     functions" for keymaps:
  247.     36, CompPrg1     Insert first matching program (or cycle)
  248.     37, CompPrgAll   Shows all matching programs
  249.  - Fixed input-stream problem for DOS scripts.
  250.  - Kludge for running DOS scripts from devices with spaces in their name.
  251.  - Fixed Enforcer hit in "set" command (eg, "set a ="),
  252.     just curious: this Enforcer hit was misinterpreted by an user to be
  253.     a bug in "_every" variable and accidently I found another bug there
  254.     which caused CSH to ignore "_every" if the previous shell command was
  255.     aborted (^C)
  256.  - Fixed Enforcer hit: "unset _path"
  257.  - Built-in command "date" can now read battery-backed up clock directly
  258.     [thanks to Gary Duncan]
  259.  
  260.  
  261.  
  262. Changes from 5.31 to 5.32   (internal beta release)
  263. -------------------------
  264.  
  265.  - Removed "No match" output if "dir" was used on empty directories.
  266.     This was a feature, not a bug.  But misunderstood by most users.
  267.  - New "edit function" for keymaps: 29, insert last word of previous line
  268.     (e.g. "keymap 0 12=29" assigns that function to CTRL+L)
  269.  - Option "-q" of built-in command "rm/delete" didn't work in previous
  270.     versions.  Now aborts as documented.
  271.     This does _not_ affect non-matching wildcards, use "_nomatch" instead.
  272.  - Checking of requested stack size (built-in command "stack").
  273.  - Built-in command "mem" now calls AllocMem(0x7fffffff,0) ten times
  274.     to flush unneeded memory.  (similar to "avail flush")
  275.  - Fixed possible rounding bug in "itok()", caused display of wrong size
  276.     for harddisk partitions around 1 GB etc.
  277.  
  278.  
  279.  
  280. Changes from 5.19 to 5.31   (The Essential)
  281. -------------------------
  282.  
  283.  - ARP free
  284.  - OS 2.0+ only
  285.  - slightly changed pattern matching (pattern.library, dos.library)
  286.  - better support for DOS' command search path and resident list
  287.  - supports "PROGDIR:"
  288.  - supports AmigaOS-scripts
  289.  - Unix-like automagic execution of ".login" and ".cshrc"
  290.  - more built-in commands support ^C (ctrl-c)
  291.  - more reliable support of WILDSTAR-Flag
  292.  - enhanced commands (new options, bug fixes, changed behaviour):
  293.     dir
  294.     path
  295.     info
  296.     rename
  297.     delete
  298.     assign
  299.     touch
  300.     ps
  301.     mkdir
  302.     addbuffers
  303.     cd
  304.     stack
  305.     help
  306.     strings
  307.     menu
  308.     resident
  309.     head
  310.     tail
  311.     set
  312.  - new commands
  313.     ln/makelink
  314.     chmod
  315.  - new (or modified) functions
  316.     @stricmp
  317.     @filedate
  318.     @filenote
  319.     @hextodec
  320.     @confirm
  321.     @ask
  322.  - new variables
  323.     _clipri
  324.     _dirformat
  325.     _nomatch
  326.  - new prompt variable(s)
  327.  - new "edit function" for keymaps
  328.  - detects if current directory was changed by other programs
  329.  - uses ASL file-requester
  330.  - arguments in scripts passed via $0, $1, $2 etc., number of
  331.     arguments in $#
  332.  - enhanced quoting mechanism for filename completion
  333.  - lots of internal changes
  334.  - lots of other bug fixes
  335.  - and lots of changes and new features I forgot to write down ;-)
  336.  
  337.  
  338.